.floating-bar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #029e77;
    z-index: 999;
  }
  
  .floating-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    text-align: center;
  }
  
  .floating-bar a:hover {
    color: #ccc;
  }
  
  @media only screen and (min-width:800px) {
    .floating-bar {
      display: none;
  
    }
  }
  

  